home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / lotus / lotus025.dsk / FONTLIST.LSS < prev    next >
Text File  |  1995-07-31  |  378b  |  14 lines

  1.     REM This script builds a simple font
  2.     REM table in a parallel column.  For best
  3.     REM results, run this script in a new document.
  4.     
  5.     .CreateParallelColumns 2, $LtsAlignmentLeft
  6.     
  7.     Forall face In .ActiveDocument.PrintManager.FaceNames
  8.         .Type face
  9.         .GotoNextParallelColumn
  10.         .Text.Font.FontName = face
  11.         .Type "abcdeABCDE1234"
  12.         .GotoNextParallelColumn
  13.     End Forall
  14.